home *** CD-ROM | disk | FTP | other *** search
/ Fritz: All Fritz / All Fritz.zip / All Fritz / FILES / UTILFILE / UNPROT2.LZH / WORD.UNP < prev    next >
Text File  |  1983-12-27  |  3KB  |  75 lines

  1.  
  2.        UNPROTECTING MICROSOFT 'WORD' FOR BACKUPS AND HARD DISKS
  3.        --------------------------------------------------------
  4.  
  5.         [Updated 21 Dec 83 - Now works for copy to hard disk]
  6.  
  7. The protection scheme for MS word is quite good.  The last track is
  8. formatted with 256 byte sectors.  One sector, however, has an ID that says
  9. it is a 1K sector.  If you try to read it as a 256 byte sector, you'll get a
  10. sector not found.  You can read it as a 1K sector with a guaranteed CRC
  11. error, and you will get the data and other sector overhead from 3+ sectors.
  12. They read it as 1K, and use the bytes after the first 256 for decryption.
  13. These bytes constitute the post-amble of the sector, the inter-sector gap,
  14. and the preamble to the next 256 byte sector.  If it's not formatted with
  15. the correct inter-sector gap, the decryption key is different and the
  16. incorrectly decoded program bombs.
  17.  
  18. The best way around this is to modify the MWCOPY program so it will let you
  19. make more than one copy.  The below mods will let you make as many backups
  20. as you want (and you can leave the write protect tab on your master disk).
  21. Of course, this method should only be used by registered owners of Word.  If
  22. you, or any of your IMF force is killed, the secretary will disavow any
  23. knowledge of these patches.
  24.  
  25. We will copy MWCOPY to another disk, using another name (MWCP) so you'll
  26. know it's the special version, and then modify MWCP.
  27.  
  28. (with master disk in A:, B: has any disk with debug on it)
  29.  
  30. A>copy mwcopy.com b:mwcp.com
  31. A>b:
  32. B>debug mwcp.com
  33. -e103
  34. xxxx:0103  0x.00
  35. -e148
  36. xxxx:0148  A5.a7
  37. -e194
  38. xxxx:0194  02.04
  39. -e32a
  40. xxxx:032A  1C.1e
  41. -e32e
  42. xxxx:032E  1C.1e
  43. -e3372
  44. xxxx:3372  01.03
  45. -ecfe
  46. xxxx:0CFE  CD.90<space>26.90<space>
  47. xxxx:0D00  5B.90
  48. -e4ab
  49. xxxx:04AB  1B.84
  50. -e69a
  51. xxxx:069A  C1.b9<space>38.ff<space>28.b9
  52. -e7b3
  53. xxxx:07B3  A2.5f<space>08.e9
  54. -e66f
  55. xxxx:066F  E5.d8<space>
  56. xxxx:0670  94.29<space>90.ff<space>29.b9
  57. -e3375                  [this is the additional
  58. xxxx:3375  48.4a         mod needed for copy to hdisk]
  59. -w
  60. Writing 332D bytes
  61. -q
  62. B>mwcp      (try making a copy..remember,
  63.              leave the write-protect on the master)
  64.    (Just follow the prompts in the program, except when they ask
  65.     you to remove the write protect tab)
  66.  
  67. The original version of this file did not have the mod at 3375, and the copy
  68. to hdisk would bomb.  With the help of a friend who told me it wouldnt copy
  69. to his hdisk, I found the cause.  The above procedure will work for backup
  70. to floppy or hard disk.  Another way to unprotect Word gets rid of the need
  71. for any weird disk formats.  But it is MUCH more complicated to do.  Enjoy!
  72.  
  73. Dave Alverson   CompuServe 72155,1560
  74.  
  75.